home *** CD-ROM | disk | FTP | other *** search
- /* -> c.ckadia
- */
-
- char *dialv = "Arthur Dial Command (not yet implemented) 27 July 87";
-
- /* C K A D I A -- Dialing program for connection to remote system */
- /* A R T H U R -- temp cut down version */
-
- #include "ckcdeb.h"
- #include <stdio.h>
- #include <ctype.h>
- #include "ckcker.h"
- #include "ckucmd.h"
-
- struct keytab mdmtab[] = { /* Modem types for command parsing */
- "No dial-out supported", 0, 0
- };
- int nmdm = (sizeof(mdmtab) / sizeof(struct keytab)); /* number of modems */
-
- /* D I A L -- Dial up the remote system */
-
- #ifdef ANSI
- void
- #endif
- dial(telnbr) char *telnbr; {
- printf("\nThe dial command has not been implemented.\n");
- printf("Acorn would be interested to hear from you if\n");
- printf("you have an auto-dial modem you wish to attach\n");
- printf("to the Archimedes. In particular we would like to know\n");
- printf("how many people want to use Acorn Prestel modems\n");
- printf("with their workstations.\n\n");
- }
-